home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / include / RCS / machCalls.h,v < prev   
Encoding:
Text File  |  1992-07-17  |  1.4 KB  |  56 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  srv030:1.1 srv027:1.1 srv026:1.1 srv024:1.1 srv021:1.1 srv019:1.1 srv018:1.1 srv016:1.1 srv014:1.1 srv010:1.1 srv008:1.1 srv007:1.1 srv006:1.1 srv005:1.1 srv004:1.1 srv003:1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     92.04.29.22.35.00;  author kupfer;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Declarations that should be in Mach header files, but aren't or are
  17. unusable.
  18. @
  19.  
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @/*
  28.  * machCalls.h --
  29.  *
  30.  *    Declarations that should properly be in Mach header files, but
  31.  *    aren't or can't be used.  (Example: mach.h and mach_traps.h can't
  32.  *    be included together, at least as of 2-Oct-91, because cpp gags.)
  33.  *
  34.  * Copyright 1992 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that this copyright
  38.  * notice appears in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  *
  43.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.8 92/03/02 15:32:57 bmiller Exp $ SPRITE (Berkeley)
  44.  */
  45.  
  46. #ifndef _MACHCALLS
  47. #define _MACHCALLS
  48.  
  49. #include <cfuncproto.h>
  50. #include <mach.h>
  51.  
  52. extern mach_port_t mach_host_self _ARGS_((void));
  53.  
  54. #endif /* _MACHCALLS */
  55. @
  56.